home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.260 < prev    next >
Lisp/Scheme  |  1996-02-12  |  29KB  |  705 lines

  1. Frequently Asked Questions (FAQS);faqs.260
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Xref: bloom-picayune.mit.edu gnu.emacs.help:7400 comp.emacs:15249 news.answers:3114
  8. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!snorkelwacker.mit.edu!eff!sol.ctr.columbia.edu!zaphod.mps.ohio-state.edu!uwm.edu!news.bbn.com!bu.edu!bigbird!jbw
  9. From: jbw@bigbird.bu.edu (Joe Wells)
  10. Newsgroups: gnu.emacs.help,comp.emacs,news.answers
  11. Subject: GNU Emacs FAQ (2/5, 28-86): Common Requests/Problems
  12. Summary: READ BEFORE POSTING.  A regularly posted list of answers to frequently
  13.          asked questions (FAQs) about GNU Emacs and many Emacs Lisp programs.
  14.          Contains pointers to other resources.  Follow "References:" link for
  15.          more metainfo.
  16. Keywords: gnu emacs faq answers frequently asked questions periodic
  17. Message-ID: <GNU-Emacs-FAQ-2.1992.09.22.011020@bigbird.bu.edu>
  18. Date: 22 Sep 92 01:10:20 GMT
  19. Expires: 21 Nov 92 01:10:20 GMT
  20. References: <GNU-Emacs-FAQ-0.1992.09.22.011020@bigbird.bu.edu>
  21. Sender: news@bu.edu
  22. Reply-To: gnu-emacs-faq-maintainers@bigbird.bu.edu
  23. Followup-To: poster
  24. Organization: GNU's Not UNIX
  25. Lines: 1133
  26. Approved: news-answers-request@mit.edu
  27. Supersedes: <GNU-Emacs-FAQ-2.1992.06.28.234430@bigbird.bu.edu>
  28.  
  29. Archive-Name: GNU-Emacs-FAQ/part2
  30. Last-Modified: Mon, 21 Sep 1992 03:14:22 GMT
  31. Last-Posted: Tue, 22 Sep 1992 01:10:20 GMT
  32.  
  33.                  GNU Emacs FAQ: Common Requests/Problems
  34.  
  35. If you are viewing this text in a GNU Emacs Buffer, you can type "M-2 C-x $" to
  36. get an overview of just the questions.  Then, when you want to look at the text
  37. of the answers, just type "C-x $".
  38.  
  39. To search for a question numbered XXX, type "M-C-s ^XXX:", followed by a C-r if
  40. that doesn't work, then type ESC to end the search.
  41.  
  42. A `+' in the 78th column means something was inserted on the line.  A `-' means
  43. something was deleted and a `!' means some combination of insertions and
  44. deletions occurred.
  45.  
  46. Full instructions for getting the latest FAQ are in question 22.  Also see the
  47. `Introduction to news.answers' posting in the `news.answers' newsgroup, or send
  48. e-mail to `mail-server@rtfm.mit.edu' with `help' on a body line, or use FTP,
  49. WAIS, or Prospero to rtfm.mit.edu.
  50.  
  51.  
  52.  
  53. Common Things People Want To Do
  54.  
  55. 28:  How do I set up a .emacs file properly?
  56.  
  57.   See `Init File' in the on-line manual.
  58.  
  59.   WARNING: In general, new Emacs users should not have .emacs files, because
  60.   it causes confusing non-standard behavior.  Then they send questions to
  61.   help-gnu-emacs asking why Emacs isn't behaving as documented.  :-)
  62.  
  63. 29:  How do I debug a .emacs file?
  64.  
  65.   First start Emacs with the `-q' command line option.  Then, in the
  66.   *scratch* buffer, type the following:
  67.  
  68.     (setq debug-on-error t) LFD
  69.     (load-file "~/.emacs") LFD
  70.  
  71.   (Type LFD by pressing C-j.)
  72.  
  73.   If you have an error in your .emacs file, this will invoke the debugger
  74.   when the error occurs.  If you don't know how to use the debugger do
  75.   (setq stack-trace-on-error t) instead.
  76.  
  77.   WARNING: this will not discover errors caused by trying to do something
  78.   that requires the terminal/window-system initialization code to have
  79.   been loaded.  See question 127.
  80.  
  81. 30:  How do I make Emacs display the current line (or column) number?
  82.  
  83.   To find out what line of the buffer you are on right now, do "M-x
  84.   what-line".  Use "M-x goto-line" to go to a specific line.  To find the
  85.   current column number, type "M-ESC (current-column)".
  86.  
  87.   Typing "C-x l" will also tell you what line you are on, provided the
  88.   buffer isn't separated into "pages" with C-l characters.  In that case, it
  89.   will only tell you what line of the current "page" you are on.  WARNING:
  90.   "C-x l" gives the wrong value when point is at the beginning of a line.
  91.  
  92.   There is no "correct" way to constantly display the current (or total)
  93.   line (or column) number on the mode line in Emacs 18, or to display the
  94.   line numbers next to the lines like vi can.  Emacs is not a line-oriented
  95.   editor, and really has no idea what "lines" of the buffer are displayed in
  96.   the window.  It would require a lot of work at the C code level to make
  97.   Emacs keep track of this.  It would not be that hard to get the column
  98.   number, but it would still require changes at the C code level.
  99.  
  100.   None of the vi emulation modes provide the `set number' capability of vi
  101.   (as far as I know).
  102.  
  103.   Emacs 19 will probably be able to show the line number on the mode-line,
  104.   but probably very inefficiently.
  105.  
  106.   People have written various kludges to display line numbers.  One is
  107.   `display-line-numbers' by Wayne Mesard <wmesard@tofu.oracle.com,
  108.   Mesard@bbn.com>.  Look in the Lisp Code Directory.  (See question
  109.   88.)
  110.  
  111. 31:  How do I turn on Abbrevs by default just in mode XXX?
  112.  
  113.   Put this in your .emacs file:
  114.  
  115.     (condition-case ()
  116.     (read-abbrev-file nil t)
  117.       (file-error nil))
  118.  
  119.     (setq XXX-mode-hook
  120.       (function
  121.        (lambda ()
  122.          (setq abbrev-mode t))))
  123.  
  124. 32:  How do I turn on Auto-Fill mode by default?
  125.  
  126.   To turn on Auto-Fill mode just once for one buffer, use "M-x
  127.   auto-fill-mode".  To turn it on for every buffer in, for example, Text
  128.   mode, do this:
  129.  
  130.     (setq text-mode-hook 'turn-on-auto-fill)
  131.  
  132.   If you want Auto-Fill mode on in all major modes, do this:
  133.  
  134.     (setq-default auto-fill-hook 'do-auto-fill)
  135.  
  136. 33:  How do I make Emacs use a certain major mode for certain files?
  137.  
  138.   If you want to use XXX mode for all files which end with the extension
  139.   `.YYY', this will do it for you:
  140.  
  141.     (setq auto-mode-alist (cons '("\\.YYY\\'" . XXX-mode) auto-mode-alist))
  142.  
  143.   Otherwise put this somewhere in the first line of any file you want to
  144.   edit in XXX mode:
  145.  
  146.     -*-XXX-*-
  147.  
  148. 34:  How do I search for, delete, or replace unprintable (8-bit or control)
  149.  characters?
  150.  
  151.   To search for a single character that appears in the buffer as, for
  152.   example, `\237', you can type "C-s C-q 2 3 7".  (This assumes the value of
  153.   search-quote-char is 17 (ie., C-q).)  Searching for ALL unprintable
  154.   characters is best done with a "regexp" search.  The easiest regexp to use
  155.   for the unprintable chars is the complement of the regexp for the
  156.   printable chars.
  157.  
  158.   Regexp for the printable chars: [\t\n\r\f -~]
  159.  
  160.   Regexp for the unprintable chars: [^\t\n\r\f -~]
  161.  
  162.   To type some of these special characters in an interactive argument to
  163.   isearch-forward-regexp or re-search-forward, you need to use C-q.  (`\t',
  164.   `\n', `\r', and `\f' stand respectively for TAB, LFD, RET, and C-l.)  So,
  165.   to search for unprintable characters using re-search-forward:
  166.  
  167.     M-x re-search-forward RET [^ TAB C-q LFD C-q RET C-q C-l SPC -~] RET
  168.  
  169.   Using isearch-forward-regexp:
  170.  
  171.     M-C-s [^ TAB RET C-q RET C-q C-l SPC -~]
  172.  
  173.   To delete all unprintable characters, simply use a replace-regexp:
  174.  
  175.     M-x replace-regexp RET [^ TAB C-q LFD C-q RET C-q C-l SPC -~] RET RET
  176.  
  177.   Replacing is similar to the above.  {I need to write the text for this
  178.   part of the answer!}
  179.  
  180.   Notes:
  181.  
  182.   * With isearch, you can type RET to get a quoted LFD (not a quoted RET).
  183.  
  184.   * You don't need to quote TAB with either isearch or typing something in
  185.     the minibuffer.
  186.  
  187.   Here are the Emacs Lisp forms of the above regexps:
  188.  
  189.     ;; regexp matching all printable characters:
  190.     "[\t\n\r\f -~]"
  191.  
  192.     ;; regexp matching all unprintable characters:
  193.     "[^\t\n\r\f -~]"
  194.  
  195. 35:  How can I highlight a region of text in Emacs?
  196.  
  197.   There are ways to get highlighting (reverse video, inverse video) in GNU
  198.   Emacs 18.58, but either they require patching the C code of Emacs and
  199.   rebuilding, or they are slow and the highlighting disappears if you scroll
  200.   or redraw the screen and it can not follow the point.  Howard Gayle's
  201.   patches for 8-bit output appear to allow highlighting (see question
  202.   ^8-bit-output).  Another patch for highlighting is by Kenichi Handa
  203.   <handa@etl.go.jp>.  There is a patch for use with X by Andy Norman
  204.   <ange@hplb.hpl.hp.com> (and modified for 18.57 by Matthieu Herrb
  205.   <matthieu@laas.fr>), which is available for FTP:                           !
  206.                                                                              !
  207.     /laas.laas.fr:pub/emacs/patch-X11-18.5{5,7}                              !
  208.  
  209.   You can highlight regions in a variety of ways in Epoch and Lucid Emacs.
  210.   GNU Emacs 19 may not be able to just temporarily highlight a region.       !
  211.  
  212.   Similar comments apply to displaying text in different fonts, except that
  213.   it is even harder.
  214.  
  215. 36:  How do I control Emacs's case-sensitivity when searching/replacing?
  216.  
  217.   For searching, the value of the variable case-fold-search determines
  218.   whether they are case sensitive:
  219.  
  220.     (setq case-fold-search nil) ; make searches case sensitive
  221.     (setq case-fold-search t)   ; make searches case insensitive
  222.  
  223.   Similarly, for replacing the variable case-replace determines whether
  224.   replacements preserve case.
  225.  
  226.   To change the case sensitivity just for one major mode, use the major
  227.   mode's hook.  For example:
  228.  
  229.     (setq XXX-mode-hook
  230.           (function
  231.        (lambda ()
  232.          (setq case-fold-search nil))))
  233.  
  234. 37:  How do I make Emacs wrap words for me?
  235.  
  236.   M-x auto-fill-mode.  The default maximum line width is 74, determined by
  237.   the variable fill-column.  To find how to turn this on automatically see
  238.   question 32.
  239.  
  240. 38:  Where can I get a better spelling checker for Emacs?
  241.  
  242.   Use Ispell.  See question 119.
  243.  
  244. 39:  How can I spell-check TeX or *roff documents?
  245.  
  246.   If you want to spell-check TeX or *roff documents with Ispell, you need to
  247.   arrange for a filter program that understands how to strip TeX or *roff
  248.   formatting commands to be run.  In the TeX distribution, there are several
  249.   different programs named `detex', all with incompatible options, and a
  250.   very old pair of programs named `detex' and `delatex', which should
  251.   probably be avoided.  The most useful one for Ispell is `detex' by Daniel
  252.   Trinkle.  A more recent version is available via FTP:                      !
  253.                                                                              !
  254.     /arthur.cs.purdue.edu:pub/trinkle/detex-2.3.tar.Z                        !
  255.  
  256.   Raphael Cerf <cerf@clipper.ens.fr> recently released a program for this    +
  257.   named `xetal':                                                             !
  258.                                                                              !
  259.     /spi.ens.fr:pub/unix/tex/                                                !
  260.  
  261.   There is a program that comes with Unix named `deroff' for stripping
  262.   formatting commands from *roff files.
  263.  
  264.   Here is an example of code you can put in a .emacs file to use these
  265.   programs:
  266.  
  267.     ;; Based on suggestions by David G. Grubbs <dgg@ksr.com> and Paul Palmer
  268.     ;; <palmerp@math.orst.edu>.
  269.  
  270.     ;; Assuming the use of detex 2.3 by Daniel Trinkle:
  271.     ;; -w means one word per line.
  272.     ;; -n means don't expand \input or \include commands.
  273.     ;; -l means force LaTeX mode.
  274.  
  275.     (require 'ispell) ; for the make-variable-buffer-local statements
  276.     (setq plain-TeX-mode-hook
  277.       (function
  278.        (lambda ()
  279.          (setq ispell-filter-hook "detex")
  280.              (setq ispell-filter-hook-args '("-nw")))))
  281.     (setq LaTeX-mode-hook
  282.       (function
  283.        (lambda ()
  284.          (setq ispell-filter-hook "detex")
  285.              (setq ispell-filter-hook-args '("-lnw")))))
  286.     (setq nroff-mode-hook
  287.       (function
  288.        (lambda ()
  289.          (setq ispell-filter-hook "deroff")
  290.              (setq ispell-filter-hook-args '("-w")))))
  291.  
  292.   You will have to adjust the arguments for programs other than Trinkle's
  293.   detex or for other versions of deroff.  Experiment running the command
  294.   from the shell to find the correct options.  If you don't have a filter
  295.   that knows how to output one word per line, you must pipe its output
  296.   through another filter to break up the output.
  297.  
  298. 40:  How do I change load-path?
  299.  
  300.   In general, you should only *add* to the load-path.  You can add
  301.   directory /XXX/YYY to the load path like this:
  302.  
  303.     (setq load-path (append load-path '("/XXX/YYY/")))
  304.  
  305.   To do this relative to your home directory:
  306.  
  307.     (setq load-path (append load-path (list (expand-file-name "~/YYY/"))))
  308.  
  309. 41:  How do I use an already running Emacs from another window?
  310.  
  311.   The `emacsclient' program is for editing a file using an already running
  312.   Emacs rather than starting up a new Emacs.  It does this by sending a
  313.   request to the already running Emacs, which must be expecting the request.
  314.  
  315.   * Setup
  316.  
  317.     Emacs must have executed the `server-start' function for emacsclient to
  318.     work.  This can be done either by a command line option:
  319.  
  320.       emacs -f server-start
  321.  
  322.     or by invoking server-start from the .emacs file:
  323.  
  324.       (if (some conditions are met) (server-start))
  325.  
  326.     When this is done, Emacs starts a subprocess running a program called
  327.     `server'.  `server' creates a Unix domain socket in the user's home
  328.     directory named `.emacs_server'.
  329.  
  330.     To get your news reader, mail reader, etc., to invoke emacsclient, try
  331.     setting the environment variable EDITOR (or sometimes VISUAL) to the
  332.     value `emacsclient'.  You may have to specify the full pathname of the
  333.     emacsclient program instead.  Examples:
  334.  
  335.       # csh commands:
  336.       setenv EDITOR emacsclient
  337.       setenv EDITOR /usr/local/emacs/etc/emacsclient  # using full pathname
  338.  
  339.       # sh command:
  340.       EDITOR=emacsclient export EDITOR
  341.  
  342.   * Normal use
  343.  
  344.     When emacsclient is run, it connects to the `.emacs_server' socket and
  345.     passes its command line options to `server'.  When `server' receives
  346.     these requests, it sends this information on the the Emacs process,
  347.     which at the next opportunity will visit the files specified.  (Line
  348.     numbers can be specified just like with Emacs.)  The user will have to
  349.     switch to the Emacs window by hand.  When the user is done editing a
  350.     file, the user can type "C-x #" to indicate this.  This will switch to
  351.     another buffer created at the request of emacsclient if there are any.
  352.     When "C-x #" has been invoked on all of the files that the emacsclient
  353.     requested to be edited, Emacs will send notification of this to `server'
  354.     which will pass this on to the emacsclient, which will then exit.
  355.  
  356.   NOTE: `emacsclient' and `server' must be running on machines which share
  357.   the same filesystem for this to work.  The pathnames that emacsclient
  358.   specifies should be correct for the filesystem that the Emacs process
  359.   sees.  The Emacs process should not be suspended at the time emacsclient
  360.   is invoked.  emacsclient should either be invoked from another X window or
  361.   from a shell window inside Emacs itself.
  362.  
  363.   There is an enhanced version of emacsclient/server called `gnuserv' by
  364.   Andy Norman <ange@hplb.hpl.hp.com> which is available in the Emacs Lisp
  365.   Archive.  gnuserv uses Internet domain sockets, so it can work across most
  366.   network connections.  It also supports the execution of arbitrary Emacs
  367.   Lisp forms and also does not require the client program to wait for
  368.   completion.  It is available via anonymous FTP (Emacs Lisp Archive:
  369.   packages/gnuserv.shar).
  370.  
  371. 42:  How do I make Emacs recognize my compiler's funny error messages?
  372.  
  373.   Write a program which runs the compiler as a child and filters its output,
  374.   rearranging as necessary.  Install with same name as compiler somewhere in
  375.   path.
  376.  
  377.   Keith Moore <moore@cs.utk.edu> wrote one such for a C compiler under AIX.
  378.   Available via FTP:                                                         !
  379.                                                                              !
  380.     /cs.utk.edu:readonly/aixcc.lex                                           !
  381.  
  382.   Jim Frost <jimf@saber.com> wrote another for the IBM xlc compiler on the
  383.   RS/6000.  (I don't know if these are both for the same compiler.)
  384.   Johnathan Vail <vail@tegra.COM> wrote something for a High C compiler
  385.   (`hc', which is one of the compilers on the RS/6000, although I think
  386.   Johnathan wrote his program for hc on a different computer).
  387.  
  388. 43:  How do I indent switch statements like this?
  389.  
  390.   Many people want to indent their switch statements like this:
  391.  
  392.     f()
  393.     {
  394.       switch(x) {
  395.         case A:
  396.           x1;
  397.           break;
  398.         case B:
  399.           x2;
  400.           break;
  401.         default:
  402.           x3;
  403.       }
  404.     }
  405.  
  406.   I don't believe there is any way to do this exactly without modifying the
  407.   Lisp code in c-mode.el.  You can set c-indent-level to 4 and
  408.   c-label-offset to -2, but this has bad effects elsewhere.  {Anyone have a
  409.   solution?}
  410.  
  411. 44:  How can I make Emacs automatically scroll horizontally?
  412.  
  413.   There is no completely correct way of doing this that does not involve     !
  414.   rewriting all commands or writing your own top-level command loop (not a   !
  415.   completely bad idea).  Wayne Mesard <wmesard@pescadero.stanford.edu> has   !
  416.   written a particularly advanced kludge called `hscroll.el' that checks     !
  417.   once a second to make sure point is visible.                               !
  418.  
  419. 45:  How do I make Emacs "typeover" or "overwrite" instead of inserting?
  420.  
  421.   M-x overwrite-mode (a minor mode).
  422.  
  423. 46:  How do I stop Emacs from beeping on a terminal?
  424.  
  425.   Martin R. Frank <martin@cc.gatech.edu> writes:
  426.  
  427.     Tell Emacs to use the 'visible bell' instead of the audible bell, and
  428.     set the visible bell to nothing.
  429.  
  430.     Put this in your TERMCAP environment variable:
  431.  
  432.       ... :vb=: ...
  433.  
  434.     And evaluate this:
  435.  
  436.       (setq visible-bell t)
  437.  
  438. 47:  How do I turn down the bell volume in Emacs running under X Windows?
  439.  
  440.   Under versions of Emacs before 18.58, the bell volume was annoying loud
  441.   and difficult to turn off.  So upgrading to 18.58 will reduce the volume.
  442.   If you want to turn it off completely, use `xset'.  There is no way to
  443.   turn the bell off just for Emacs without affecting all other programs.
  444.  
  445.   Under Epoch you can do:
  446.  
  447.     (setq epoch::bell-volume 20)
  448.  
  449.   Stu Grossman <grossman@sunburn.stanford.edu> wrote a patch that allows the
  450.   bell volume to be adjusted from inside Emacs just for Emacs.
  451.  
  452. 48:  How do I tell Emacs to automatically indent a new line to the
  453.  indentation of the previous line?
  454.  
  455.   One solution is Indented Text Mode (M-x indented-text-mode).
  456.  
  457.   If you have Auto-Fill mode on (a minor mode, see question 32), you can
  458.   tell Emacs to prefix every line with a certain character sequence, the
  459.   "fill prefix".  Type the prefix at the beginning of a line, position point
  460.   after it, and then type "C-x ." (set-fill-prefix) to set the fill prefix.
  461.   Thereafter, auto-filling will automatically put the fill prefix at the
  462.   beginning of new lines, and M-q (fill-paragraph) will maintain any fill
  463.   prefix when refilling the paragraph.
  464.  
  465.   NOTE: If you have paragraphs with different levels of indentation, you
  466.   will have to set the fill prefix to the correct value each time you move
  467.   to a new paragraph.  To avoid this hassle, try one of the many packages
  468.   available from the Emacs Lisp Archive.  Look up `fill' and `indent' in the
  469.   Lisp Code Directory for guidance.
  470.  
  471. 49:  How do I show which parenthesis matches the one I'm looking at?
  472.  
  473.   If you're looking at a right parenthesis (or brace or bracket) you can
  474.   delete it and reinsert it.  Emacs will blink the cursor on the matching
  475.   parenthesis.
  476.  
  477.   M-C-f (forward-sexp) and M-C-b (backward-sexp) will skip over balanced
  478.   parentheses, so you can see which parentheses match.  (You can train it to
  479.   skip over balanced brackets and braces at the same time by modifying the
  480.   syntax table.)
  481.  
  482.   Here is some Emacs Lisp that will make the % key show the matching
  483.   parenthesis, like in vi.  In addition, if the cursor isn't over a
  484.   parenthesis, it simply inserts a % like normal.
  485.  
  486.     ;; By an unknown contributor
  487.  
  488.     (global-set-key "%" 'match-paren)
  489.  
  490.     (defun match-paren (arg)
  491.       "Go to the matching parenthesis if on parenthesis otherwise insert %."
  492.       (interactive "p")
  493.       (cond ((looking-at "\\s\(") (forward-list 1) (backward-char 1))
  494.         ((looking-at "\\s\)") (forward-char 1) (backward-list 1))
  495.         (t (self-insert-command (or arg 1)))))
  496.  
  497. 50:  In C mode, can I show just the lines that will be left after #ifdef
  498.  commands are handled by the compiler?
  499.  
  500.   M-x hide-ifdef-mode.  (This is a minor mode.)
  501.  
  502.   You may have to (load "hideif") first.  If you want to do this regularly,
  503.   put this in your .emacs file:
  504.  
  505.     (autoload 'hide-ifdef-mode "hideif" nil t)
  506.  
  507.   {Yes, I know, this should be in lisp/loaddefs.el already.}
  508.  
  509. 51:  Is there an equivalent to the `.' (dot) command of vi?
  510.  
  511.   (`.' is the redo command in vi.  It redoes the last insertion/deletion.)
  512.  
  513.   No, not really.
  514.  
  515.   You can type "C-x ESC" (repeat-complex-command) to reinvoke commands that
  516.   used the minibuffer to get arguments.  In repeat-complex-command you can
  517.   type M-p and M-n to scan through all the different complex commands you've
  518.   typed.
  519.  
  520.   To repeat something on each line I recommend using keyboard macros.
  521.  
  522. 52:  What are the valid X resource settings (ie., stuff in .Xdefaults)?
  523.  
  524.   See the Emacs man page, or the etc/OPTIONS file.  Ignore the information
  525.   in etc/XDOC which is way out of date.
  526.  
  527. 53:  How do I execute a piece of Emacs Lisp code?
  528.  
  529.   There are a number of ways to execute (called "evaluate") an Emacs Lisp
  530.   "form":
  531.  
  532.   * If you want it evaluated every time you run Emacs, put it in a file
  533.     named `.emacs' in your home directory.
  534.  
  535.   * You can type the form in the *scratch* buffer, and then type LFD (or
  536.     C-j) after it.  The result of evaluating the form will be inserted in
  537.     the buffer.
  538.  
  539.   * In Emacs-Lisp mode, typing M-C-x evaluates a top-level form before or
  540.     around point.
  541.  
  542.   * Typing "C-x C-e" in any buffer evaluates the Lisp form immediately
  543.     before point and prints its value in the echo area.
  544.  
  545.   * Typing M-ESC or M-x eval-expression allows you to type a Lisp form in
  546.     the minibuffer which will be evaluated.
  547.  
  548.   * You can use M-x load-file to have Emacs evaluate all the Lisp forms in
  549.     a file.  (To do this from Lisp use the function `load' instead.)
  550.  
  551.   These functions are also used for evaluating Lisp forms:
  552.  
  553.     load-library, eval-region, eval-current-buffer, require, autoload
  554.  
  555. 54:  How do I change Emacs's idea of the tab character's length?
  556.  
  557.   Example: (setq default-tab-width 10).
  558.  
  559. 55:  How do I insert `>' at the beginning of every line?
  560.  
  561.   Type "M-x replace-regexp RET ^ RET > RET".
  562.  
  563.   To do this only in the region, type "C-x n M-x replace-regexp RET ^ RET
  564.   > RET C-x w".
  565.  
  566.   WARNING: The command narrow-to-region (C-x n) is disabled by default
  567.   because it can be very confusing (ie., "Oh no!  Where did my file go?").
  568.  
  569. 56:  How do I insert `_^H' before each character in a paragraph to get an
  570.  underlined paragraph?
  571.  
  572.   M-x underline-region.
  573.  
  574. 57:  How do I repeat a command as many times as possible?
  575.  
  576.   Use "C-x (" and "C-x )" to make a keyboard macro that invokes the command
  577.   and then type "M-0 C-x e".
  578.  
  579.   WARNING: any messages your command prints in the echo area will be
  580.   suppressed.
  581.  
  582. 58:  How do I make Emacs behave like this: when I go up or down, the cursor
  583.  should stay in the same column even if the line is too short?
  584.  
  585.   M-x picture-mode.  (This is a minor mode, in theory anyway ...)
  586.  
  587. 59:  How do I tell Emacs to iconify itself?
  588.  
  589.   You need to modify C source and recompile.  Either that or get Epoch or
  590.   Lucid Emacs instead.  Patches have been written by Robert Forsman
  591.   <thoth@reef.cis.ufl.edu> and Johan Vromans <jv@mh.nl> to allow Emacs to
  592.   iconify itself and by Matt Wette <mwette@mr-ed.jpl.nasa.gov> and
  593.   Manavendra K. Thakur <thakur@zerkalo.harvard.edu> (for 18.57, plus icon
  594.   geometry) to allow Emacs to start up iconified.  I don't know which of
  595.   these patches work together.
  596.  
  597.   Anonymous FTP:
  598.     /csi.jpl.nasa.gov:pub/emacs.patch1  (Matt Wette)                         +
  599.     /ftp.eu.net:gnu/emacs/FP-Xfun.Z  (Johan Vromans)                         +
  600.     /ftp.urc.tue.nl:pub/tex/emacs/FP-Xfun  (Johan Vromans)                   +
  601.  
  602. 60:  How do I use regexps (regular expressions) in Emacs?
  603.  
  604.   See `Regexps' in the online manual.
  605.  
  606.   WARNING: The "or" operator is `\|', not `|', and the grouping operators
  607.   are `\(' and `\)'.  Also, the string syntax for a backslash is "\\".
  608.   Thus, the string syntax for a regular expression like xxx\(foo\|bar\) is
  609.   "xxx\\(foo\\|bar\\)".  Notice the duplicated backslashes!
  610.  
  611.   WARNING: Unlike in Unix grep, sed, etc., a complement character set
  612.   ([^...])  can match a newline character (LFD aka C-j aka \n), unless
  613.   newline is mentioned as one of the characters not to match.
  614.  
  615.   WARNING: The character syntax regexps (eg. `\sw') are not meaningful
  616.   inside character set regexps (eg. `[aeiou]').  (This is actually typical
  617.   for regexp syntax.)
  618.  
  619. 61:  How do I perform a replace operation across more than one file?
  620.  
  621.   The "tags" feature of Emacs includes the command tags-query-replace which
  622.   performs a query-replace across all the files mentioned in the TAGS file.
  623.   See `Tags:Tags Search' in the online manual.
  624.  
  625.   In addition, Martin Boyer has written a package named global-replace which
  626.   will perform a query-replace across all the files mentioned in the
  627.   *compilation* buffer (usually done after a `grep'), which is available via
  628.   anonymous FTP:                                                             !
  629.                                                                              !
  630.     /ireq-robot.hydro.qc.ca:pub/emacs/lisp/compile.el.Z                      !
  631.     /ireq-robot.hydro.qc.ca:pub/emacs/lisp/global-replace.el.Z               !
  632.     /ireq-robot.hydro.qc.ca:pub/emacs/lisp/query.el.Z                        !
  633.  
  634. 62:  Where is the documentation for `etags'?
  635.  
  636.   `etags' takes options just like a prior version of ctags, so your ctags
  637.   manual (if any) may be useful.  {Can someone send me the details on this?}
  638.  
  639.  
  640.  
  641. Bugs/Problems
  642.  
  643. 63:  Does Emacs have problems with files larger than 8 megabytes?
  644.  
  645.   Most installed versions of GNU Emacs will use 24-bit signed integers (and
  646.   24-bit pointers) internally.  This limits the file size that Emacs can
  647.   handle to 8,388,607 bytes (2^23 - 1).
  648.  
  649.   Leonard N. Zubkoff <lnz@lucid.com> suggests putting the following two
  650.   lines in src/config.h before compiling Emacs to allow for 26-bit integers
  651.   and pointers (and thus filesizes of up to 33,554,431 bytes):
  652.  
  653.     #define VALBITS 26
  654.     #define GCTYPEBITS 5
  655.  
  656.   WARNING: This method may result in `ILLEGAL DATATYPE' and other random
  657.   errors on some machines.
  658.  
  659.   David Gillespie <daveg@csvax.cs.caltech.edu> gives an explanation of why
  660.   Emacs uses 24 bit integers and pointers:
  661.  
  662.     Emacs is largely written in a dialect of Lisp; Lisp is a freely-typed
  663.     language in the sense that you can put any value of any type into any
  664.     variable, or return it from a function, and so on.  So each value must
  665.     carry a "tag" along with it identifying what kind of thing it is, eg.,
  666.     integer, pointer to a list, pointer to an editing buffer, and so on.
  667.     Emacs uses standard 32-bit integers for data objects, taking the top 8
  668.     bits for the tag and the bottom 24 bits for the value.  So integers (and
  669.     pointers) are somewhat restricted compared to true C integers and
  670.     pointers.
  671.  
  672.     Emacs uses 8-bit tags because that's a little faster on byte-oriented
  673.     machines, but there are only really enough tags to require 6 bits.
  674.  
  675. 64:  Why can't Emacs find files in current directory on startup?
  676.  
  677.   Most likely, you have an environment variable named PWD that is set to a
  678.   value other than the name of your current directory.  This is most
  679.   likely caused by using two different shell programs.  `ksh' and (some
  680.   versions of) `csh' set and maintain the value of the PWD environment
  681.   variable, but `sh' doesn't.  If you start sh from ksh, change your
  682.   current directory inside sh, and then start Emacs from inside sh, PWD
  683.   will have the wrong value but Emacs will use this value.  See the
  684.   etc/OPTIONS file for more details.
  685.  
  686.   Perhaps an easier solution is not to use two shells.  The `chsh' program
  687.   can often be used to change one's default login shell.
  688.  
  689.   You may have PWD set for other reasons.  Another possibility is that you
  690.   are setting default-directory from your .emacs file.
  691.  
  692.   Here is a fix by Jim Blandy <jimb@occs.cs.oberlin.edu>:
  693.  
  694.     >--- emacs/jjj/emacs-18.58/lisp/startup.el    Tue Jan 15 23:19:04 1991
  695.     >+++ startup.el    Mon Apr 20 00:21:01 1992
  696.     >@@ -81,5 +81,7 @@
  697.     >     ;; In presence of symlinks, switch to cleaner form of default directory.
  698.     >     (if (and (not (eq system-type 'vax-vms))
  699.     >-         (getenv "PWD"))
  700.     >+         (getenv "PWD")
  701.     >+          (equal (nthcdr 10 (file-attributes default-directory))
  702.     >+             (nthcdr 10 (file-attributes (getenv "PWD")))))
  703.     >     (setq default-directory (file-name-as-directory (getenv "PWD"))))
  704.     >     (unwind-protect
  705.